Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructList<T> Class / FindAll Method
The GrapeCity.Documents.Common.StructPredicate`1 delegate that defines the conditions of the elements to search for.

In This Topic
    FindAll Method (StructList<T>)
    In This Topic
    Retrieves all the elements that match the conditions defined by the specified predicate.
    Syntax
    'Declaration
     
    Public Function FindAll( _
       ByVal match As GrapeCity.Documents.Common.StructPredicate(Of T) _
    ) As StructList(Of T)
    public StructList<T> FindAll( 
       GrapeCity.Documents.Common.StructPredicate<T> match
    )

    Parameters

    match
    The GrapeCity.Documents.Common.StructPredicate`1 delegate that defines the conditions of the elements to search for.

    Return Value

    A StructList<T> containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty StructList<T>.
    See Also